@charset "utf-8";
.banner img {width: 100%; height: auto; margin: 0px auto;}
.main  {max-width: 1200px; background-color: white; padding: 20px;margin: 0 auto;}
#services-section {
  text-align: center;
  padding: 40px 20px;
}
.main h1{font-size: 2.5rem; }
#services-section h1 {
  
  margin-bottom: 10px;
}

#services-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
}

#services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service {
  flex: 1 1 calc(33.33% - 40px);
  margin: 20px;
  text-align: center;
}

.service img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.service h2 {
  font-size: 1.5em;
  margin: 10px 0;
}

.service p {
  font-size: 1em;
  color: #555;
}

@media (max-width: 768px) {
  .service {
    flex: 1 1 100%;
  }
}